*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
body{
    color: #7e7e7e;
    font-family: sans-serif, helvetica;
    /* overflow: hidden; */
}
html{
    scroll-behavior: smooth;
}
.desktop{
    display: none;
}
@media (min-width: 1200px) {
    .desktop{
        display: initial;
    }
}

.site-wrapper {
    position: relative;
    max-width: 100%;  /* Set a max-width if you want to restrict the site's width */
    margin: auto;       /* Centers the site-wrapper in the page */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional: adds a shadow for better visibility */
    border-radius: 25px; /* Adjust the radius to your liking */
    overflow: hidden;    /* Ensures no child content leaks outside the rounded corners */
    min-height: 90vh;   /* Optional: makes the wrapper at least as tall as the viewport */
}


header {
    display: grid;
    background-color: #fff;
    grid-template-columns: auto 1fr auto;
    padding: 5px 20px;
    position: fixed;
    top: -10px;
    z-index: 4;
    width: 100%;
    align-items: center; /* Aligns children vertically in the center */
}

a.logo {
    height: 50px; /* Adjust height as necessary */
    width: 100px; /* Keep your width or adjust as necessary */
    color: inherit;
    display: flex; /* Makes the logo container a flexbox */
    align-items: center; /* Center aligns the content vertically */
    justify-content: center; /* Center aligns the content horizontally if needed */
}

header a {
    color: #7e7e7e;
    z-index: 4;
    display: flex;
    align-items: center;
}

header nav a {
    text-decoration: none;
    padding: 5px 10px;
    cursor: pointer;
    display: inline-flex; /* Makes anchor tags flex containers too */
    align-items: center; /* Ensures text inside anchors is centered vertically */
}

header nav.center{
    text-align: center;
    padding-top: 10px;
}
header nav.right{
    text-align:right;
    padding-top: 10px;
}

#menuBtn {
    /*border: 1px solid #171a20;  /* Black border, adjust the color as needed */
    padding: 3px 3px;          /* Adds some padding inside the border */
    background-color: transparent;  /* White background, change as necessary */
    /*color: #171a20;             /* Text color, here it's black */
    text-decoration: none;      /* Removes underline from the link */
    font-size: 20px;            /* Sets the font size, adjust as needed */
    /*border-radius: 5px;         /* Optional: rounds the corners of the border */
    /*display: inline-block;      /* Ensures padding and width/height are respected */
    cursor: pointer;            /* Changes the mouse cursor to indicate it's clickable */
    transition: all 0.4s ease;  /* Smooth transition for hover effects */
}

#menuBtn:hover {
    /*background-color: #171a20; /* Light grey background on hover, adjust as needed */
    border-color: #D2691E;     /* Darker border color on hover */
    color: #D2691E;
    border-radius: 0%;
}







section{
    height:100vh;
    background-size: cover;
    background-position:center center;
}

.content-section {
    max-width: 800px;
    padding: 10%; /* Adds spacing inside the section */
    background-color: inherit;
    padding-top: 80px; /* Add top padding to account for fixed header */
}

#indexsection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Extra padding for the index section specifically */
}


.article-content {
    font-size: 1rem;
    line-height: 1.5;
    color: #555; /* Neutral text color for better readability */
    text-align: left; /* Align text to the left for a standard article format */
}




aside{
    position:fixed;
    transition: right .4s ease;
    right:-320px;
    width: 320px;
    background-color:#fff;
    padding:80px 40px;
    z-index:4;
    height:100vh;
}
aside.active{
    right:0;
}
aside a{
    display:block;
    color:inherit;
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    font-weight:500;
    cursor: pointer;
}
aside button.close{
    font-size:24px;
    border:0;
    background-color: transparent;
    position: absolute;
    top:10px;
    right:10px;
    padding: 10px;
    font-family: sans-serif;
    font-weight:100;
    cursor:pointer;
}

.asidelinkclose{
    font-size:24px;
    border:0;
    background-color: transparent;
    position: absolute;
    top:10px;
    right:10px;
    padding: 10px;
    font-family: sans-serif;
    font-weight:100;
    cursor:pointer;

}
.backdrop{
    display:none;
    position: fixed;
    z-index:4;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .4s ease;
    backdrop-filter: blur(5px);
}
.backdrop.active{
    display:block;
    background-color: rgba(0, 0, 0, 0.35);
}

.center.desktop.links {
    background: transparent ;
    color:#7e7e7e;
    transition: .5s;
    border-radius: 0%;
  }

  .center.desktop.links:hover {
    color: #D2691E;
  }

  
  #headerLinks {
    margin-top: 5px;
  }





/* links section */
.article-content {
    font-family: Arial, sans-serif;
}

.current-month {
    margin-bottom: 1.5rem;
}

.article {
    margin-bottom: 1rem;
}

.article h3 {
    margin: 0;
    font-size: 1.2rem;
}

.article p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
}

.previous-months ul {
    padding: 0;
    list-style: none;
}

.previous-months li {
    margin-bottom: 0.5rem;
}

.previous-months a {
    text-decoration: none;
    color: blue;
}

.previous-months a:hover {
    text-decoration: underline;
}

/* Thoughts section */
.thoughts-container {
    max-width: 660px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.thought-entry {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.thought-entry:last-child {
    border-bottom: none;
}

.thought-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #111;
}

.thought-summary {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 1rem;
}

.thought-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s ease;
    width: 40px;
    height: 40px;
}

.play-button:hover {
    color: #111;
}

.play-button svg {
    width: 24px;
    height: 24px;
    transition: all 0.2s ease;
}

.play-button.playing svg path {
    d: 'M6 19h4V5H6v14zm8-14v14h4V5h-4z';
}

.thought-date {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .thoughts-container {
        padding: 1rem;
    }

    .thought-title {
        font-size: 1.25rem;
    }

    .thought-summary {
        font-size: 0.95rem;
    }
}

/* Links section */
.links-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.links-section {
    margin-bottom: 2rem;
}

.links-section h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.links-list a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.links-list a:hover {
    color: #666;
}

/* Books section */
.books-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.books-intro {
    margin-bottom: 2rem;
}

.books-intro h2 {
    font-size: 1.2rem;
    color: #333;
}

.book-category {
    margin-bottom: 2rem;
}

.book-category h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.book-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.book-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.book-title {
    font-size: 1rem;
    color: #333;
}

.book-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating {
    font-size: 1rem;
    letter-spacing: 1px;
}

.star {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.book-date {
    font-size: 0.9rem;
    color: #666;
    min-width: 85px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .book-entry {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .book-info {
        width: 100%;
        justify-content: space-between;
    }
}

.social-links {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.social-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #333;
}

.separator {
    color: #ccc;
    margin: 0 0.5rem;
}

/* Menu styles */
.menu-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.menu-intro {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #666;
}

.menu-intro h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.menu-note {
    color: #666;
    font-size: 0.9rem;
}

.menu-section {
    margin-bottom: 3rem;
}

.menu-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.selection-note {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
    margin-left: 1rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-name {
    font-size: 1.1rem;
    color: #333;
}

.item-description {
    font-size: 0.9rem;
    color: #666;
}

.season {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-container {
        padding: 1rem;
    }

    .menu-intro h1 {
        font-size: 1.75rem;
    }

    .menu-section h2 {
        font-size: 1.2rem;
    }

    .item-name {
        font-size: 1rem;
    }
}
